In [1]:
from __future__ import print_function

from keras.models import Sequential, Model
from keras.layers.embeddings import Embedding
from keras.layers import Input, Activation, Dense, Permute, Dropout, add, dot,merge, concatenate
from keras.layers import LSTM
from keras.utils.data_utils import get_file
from keras.preprocessing.sequence import pad_sequences
from functools import reduce
import tarfile
import numpy as np
import re
/anaconda3/lib/python3.6/site-packages/h5py/__init__.py:36: FutureWarning: Conversion of the second argument of issubdtype from `float` to `np.floating` is deprecated. In future, it will be treated as `np.float64 == np.dtype(float).type`.
  from ._conv import register_converters as _register_converters
Using TensorFlow backend.
In [2]:
def tokenize(sent):
    '''Return the tokens of a sentence including punctuation.
    >>> tokenize('Bob dropped the apple. Where is the apple?')
    ['Bob', 'dropped', 'the', 'apple', '.', 'Where', 'is', 'the', 'apple', '?']
    '''
    return [x.strip() for x in re.split('(\W+)?', sent) if x.strip()]
In [3]:
def parse_stories(lines, only_supporting=False):
    '''Parse stories provided in the bAbi tasks format
    If only_supporting is true, only the sentences
    that support the answer are kept.
    '''
    data = []
    story = []
    for line in lines:
        line = line.decode('utf-8').strip()
        nid, line = line.split(' ', 1)
        nid = int(nid)
        if nid == 1:
            story = []
        if '\t' in line:
            q, a, supporting = line.split('\t')
            q = tokenize(q)
            substory = None
            if only_supporting:
                # Only select the related substory
                supporting = map(int, supporting.split())
                substory = [story[i - 1] for i in supporting]
            else:
                # Provide all the substories
                substory = [x for x in story if x]
            data.append((substory, q, a))
            story.append('')
        else:
            sent = tokenize(line)
            story.append(sent)
        #print(data)
    return data
In [4]:
def get_stories(f, only_supporting=False, max_length=None):
    '''Given a file name, read the file,
    retrieve the stories,
    and then convert the sentences into a single story.
    If max_length is supplied,
    any stories longer than max_length tokens will be discarded.
    '''
    data = parse_stories(f.readlines(), only_supporting=only_supporting)
    flatten = lambda data: reduce(lambda x, y: x + y, data)
    data = [(flatten(story), q, answer) for story, q, answer in data if not max_length or len(flatten(story)) < max_length]
    return data
In [5]:
def vectorize_stories(data, word_idx, story_maxlen, query_maxlen):
    X = []
    Xq = []
    Y = []
    for story, query, answer in data:
        x=[word_idx[w] for w in story]
        xq=[word_idx[w] for w in query]
        y=np.zeros(len(word_idx) + 1)
        y[word_idx[answer]]=1
        X.append(x)
        Xq.append(xq)
        Y.append(y)
    return (pad_sequences(X, maxlen=story_maxlen),
            pad_sequences(Xq, maxlen=query_maxlen),
            np.array(Y))
In [6]:
try:
    path = get_file('babi-tasks-v1-2.tar.gz', origin='https://s3.amazonaws.com/text-datasets/babi_tasks_1-20_v1-2.tar.gz')
except:
    print('Error downloading dataset, please download it manually:\n'
          '$ wget http://www.thespermwhale.com/jaseweston/babi/tasks_1-20_v1-2.tar.gz\n'
          '$ mv tasks_1-20_v1-2.tar.gz ~/.keras/datasets/babi-tasks-v1-2.tar.gz')
    raise
tar = tarfile.open(path)
In [7]:
challenges = {'single_supporting_fact_10k': 'tasks_1-20_v1-2/en-10k/qa1_single-supporting-fact_{}.txt'}
challenge_type = 'single_supporting_fact_10k'
challenge = challenges[challenge_type]

print('Extracting stories for the challenge:', challenge_type)
train_stories = get_stories(tar.extractfile(challenge.format('train')))
test_stories = get_stories(tar.extractfile(challenge.format('test')))
Extracting stories for the challenge: single_supporting_fact_10k
/anaconda3/lib/python3.6/re.py:212: FutureWarning: split() requires a non-empty pattern match.
  return _compile(pattern, flags).split(string, maxsplit)
In [8]:
print(train_stories)
[(['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office')]
In [9]:
print(test_stories)
[(['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom')]
In [10]:
vocab = set()
for story, q, answer in train_stories + test_stories:
    print(story)
    vocab |= set(story + q + [answer])
vocab = sorted(vocab)

# Reserve 0 for masking via pad_sequences
vocab_size = len(vocab) + 1
story_maxlen = max(map(len, (x for x, _, _ in train_stories + test_stories)))
query_maxlen = max(map(len, (x for _, x, _ in train_stories + test_stories)))
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.']
['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.']
['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.']
['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.']
['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.']
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
In [11]:
with open('story_maxlen_single_fact.txt','w') as file:
    file.write(str(story_maxlen))
    file.write('\n')
file.close()


with open('query_maxlen_single_fact.txt','w') as file:
    file.write(str(query_maxlen))
    file.write('\n')
file.close()
In [12]:
print('-')
print('Vocab size:', vocab_size, 'unique words')
print('Story max length:', story_maxlen, 'words')
print('Query max length:', query_maxlen, 'words')
print('Number of training stories:', len(train_stories))
print('Number of test stories:', len(test_stories))
print('-')
print('Here\'s what a "story" tuple looks like (input, query, answer):')
print(train_stories[0])
print('-')
print('Vectorizing the word sequences...')

word_idx = dict((c, i + 1) for i, c in enumerate(vocab))
idx_word = dict((i+1, c) for i,c in enumerate(vocab))
inputs_train, queries_train, answers_train = vectorize_stories(train_stories,
                                                               word_idx,
                                                               story_maxlen,
                                                               query_maxlen)
inputs_test, queries_test, answers_test = vectorize_stories(test_stories,
                                                            word_idx,
                                                            story_maxlen,
                                                            query_maxlen)
-
Vocab size: 22 unique words
Story max length: 68 words
Query max length: 4 words
Number of training stories: 10000
Number of test stories: 1000
-
Here's what a "story" tuple looks like (input, query, answer):
(['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom')
-
Vectorizing the word sequences...
In [14]:
with open('word_idx_single_fact.txt','w') as file:
    file.write(str(word_idx))
file.close()
In [13]:
with open('idx_word_single_fact.txt','w') as file:
    file.write(str(idx_word))
file.close()
In [15]:
print(word_idx)
{'.': 1, '?': 2, 'Daniel': 3, 'John': 4, 'Mary': 5, 'Sandra': 6, 'Where': 7, 'back': 8, 'bathroom': 9, 'bedroom': 10, 'garden': 11, 'hallway': 12, 'is': 13, 'journeyed': 14, 'kitchen': 15, 'moved': 16, 'office': 17, 'the': 18, 'to': 19, 'travelled': 20, 'went': 21}
In [16]:
print(idx_word)
{1: '.', 2: '?', 3: 'Daniel', 4: 'John', 5: 'Mary', 6: 'Sandra', 7: 'Where', 8: 'back', 9: 'bathroom', 10: 'bedroom', 11: 'garden', 12: 'hallway', 13: 'is', 14: 'journeyed', 15: 'kitchen', 16: 'moved', 17: 'office', 18: 'the', 19: 'to', 20: 'travelled', 21: 'went'}
In [17]:
print('-')
print('inputs: integer tensor of shape (samples, max_length)')
print('inputs_train shape:', inputs_train.shape)
print('inputs_test shape:', inputs_test.shape)
print('-')
print('queries: integer tensor of shape (samples, max_length)')
print('queries_train shape:', queries_train.shape)
print('queries_test shape:', queries_test.shape)
print('-')
print('answers: binary (1 or 0) tensor of shape (samples, vocab_size)')
print('answers_train shape:', answers_train.shape)
print('answers_test shape:', answers_test.shape)
print('-')
print('Compiling...')
-
inputs: integer tensor of shape (samples, max_length)
inputs_train shape: (10000, 68)
inputs_test shape: (1000, 68)
-
queries: integer tensor of shape (samples, max_length)
queries_train shape: (10000, 4)
queries_test shape: (1000, 4)
-
answers: binary (1 or 0) tensor of shape (samples, vocab_size)
answers_train shape: (10000, 22)
answers_test shape: (1000, 22)
-
Compiling...
In [18]:
train_epochs = 120
batch_size = 32
lstm_size = 64
In [19]:
# placeholders
input_sequence = Input((story_maxlen,))
question = Input((query_maxlen,))

print('Input sequence:', input_sequence)
print('Question:', question)

# encoders
# embed the input sequence into a sequence of vectors
input_encoder_m = Sequential()
input_encoder_m.add(Embedding(input_dim=vocab_size,
                              output_dim=64))
input_encoder_m.add(Dropout(0.3))
# output: (samples, story_maxlen, embedding_dim)

# embed the input into a sequence of vectors of size query_maxlen
input_encoder_c = Sequential()
input_encoder_c.add(Embedding(input_dim=vocab_size,
                              output_dim=query_maxlen))
input_encoder_c.add(Dropout(0.3))
# output: (samples, story_maxlen, query_maxlen)

# embed the question into a sequence of vectors
question_encoder = Sequential()
question_encoder.add(Embedding(input_dim=vocab_size,
                               output_dim=64,
                               input_length=query_maxlen))
question_encoder.add(Dropout(0.3))
# output: (samples, query_maxlen, embedding_dim)

# encode input sequence and questions (which are indices)
# to sequences of dense vectors
input_encoded_m = input_encoder_m(input_sequence)
print('Input encoded m', input_encoded_m)
input_encoded_c = input_encoder_c(input_sequence)
print('Input encoded c', input_encoded_c)
question_encoded = question_encoder(question)
print('Question encoded', question_encoded)


# compute a 'match' between the first input vector sequence
# and the question vector sequence
# shape: `(samples, story_maxlen, query_maxlen)
match = merge([input_encoded_m, question_encoded], mode='dot', dot_axes=(2, 2))
print(match.shape)
match = Activation('softmax')(match)
print('Match shape', match)

# add the match matrix with the second input vector sequence
response = merge([match, input_encoded_c], mode='sum')  # (samples, story_maxlen, query_maxlen)
response = Permute((2, 1))(response)  # (samples, query_maxlen, story_maxlen)
print('Response shape', response)

# concatenate the response vector with the question vector sequence
answer = merge([response, question_encoded], mode='concat')
print('Answer shape', answer)

#answer = LSTM(lstm_size, return_sequences=True)(answer)  # Generate tensors of shape 32
#answer = Dropout(0.3)(answer)
answer = LSTM(64)(answer)  # Generate tensors of shape 32
answer = Dropout(0.3)(answer)
answer = Dense(vocab_size)(answer)  # (samples, vocab_size)
# we output a probability distribution over the vocabulary
answer = Activation('softmax')(answer)
Input sequence: Tensor("input_1:0", shape=(?, 68), dtype=float32)
Question: Tensor("input_2:0", shape=(?, 4), dtype=float32)
Input encoded m Tensor("sequential_1/dropout_1/cond/Merge:0", shape=(?, 68, 64), dtype=float32)
Input encoded c Tensor("sequential_2/dropout_2/cond/Merge:0", shape=(?, 68, 4), dtype=float32)
Question encoded Tensor("sequential_3/dropout_3/cond/Merge:0", shape=(?, 4, 64), dtype=float32)
(?, 68, 4)
Match shape Tensor("activation_1/truediv:0", shape=(?, 68, 4), dtype=float32)
Response shape Tensor("permute_1/transpose:0", shape=(?, 4, 68), dtype=float32)
Answer shape Tensor("merge_3/concat:0", shape=(?, 4, 132), dtype=float32)
/anaconda3/lib/python3.6/site-packages/ipykernel_launcher.py:44: UserWarning: The `merge` function is deprecated and will be removed after 08/2017. Use instead layers from `keras.layers.merge`, e.g. `add`, `concatenate`, etc.
/anaconda3/lib/python3.6/site-packages/keras/legacy/layers.py:465: UserWarning: The `Merge` layer is deprecated and will be removed after 08/2017. Use instead layers from `keras.layers.merge`, e.g. `add`, `concatenate`, etc.
  name=name)
/anaconda3/lib/python3.6/site-packages/ipykernel_launcher.py:50: UserWarning: The `merge` function is deprecated and will be removed after 08/2017. Use instead layers from `keras.layers.merge`, e.g. `add`, `concatenate`, etc.
/anaconda3/lib/python3.6/site-packages/ipykernel_launcher.py:55: UserWarning: The `merge` function is deprecated and will be removed after 08/2017. Use instead layers from `keras.layers.merge`, e.g. `add`, `concatenate`, etc.
In [20]:
model = Model([input_sequence, question], answer)
model.compile(optimizer='rmsprop', loss='categorical_crossentropy',
              metrics=['accuracy'])
In [21]:
model.fit([inputs_train, queries_train], answers_train, batch_size, train_epochs,
          validation_data=([inputs_test, queries_test], answers_test))
Train on 10000 samples, validate on 1000 samples
Epoch 1/120
10000/10000 [==============================] - 6s 571us/step - loss: 1.8714 - acc: 0.1760 - val_loss: 1.7734 - val_acc: 0.2280
Epoch 2/120
10000/10000 [==============================] - 6s 556us/step - loss: 1.6855 - acc: 0.2734 - val_loss: 1.6245 - val_acc: 0.3330
Epoch 3/120
10000/10000 [==============================] - 6s 550us/step - loss: 1.5614 - acc: 0.3861 - val_loss: 1.4983 - val_acc: 0.4250
Epoch 4/120
10000/10000 [==============================] - 6s 557us/step - loss: 1.4928 - acc: 0.4224 - val_loss: 1.4539 - val_acc: 0.4320
Epoch 5/120
10000/10000 [==============================] - 6s 573us/step - loss: 1.4473 - acc: 0.4476 - val_loss: 1.3831 - val_acc: 0.4820
Epoch 6/120
10000/10000 [==============================] - 6s 570us/step - loss: 1.3871 - acc: 0.4662 - val_loss: 1.3413 - val_acc: 0.4840
Epoch 7/120
10000/10000 [==============================] - 5s 534us/step - loss: 1.3508 - acc: 0.4792 - val_loss: 1.2918 - val_acc: 0.5100
Epoch 8/120
10000/10000 [==============================] - 5s 534us/step - loss: 1.3171 - acc: 0.4965 - val_loss: 1.2466 - val_acc: 0.5170
Epoch 9/120
10000/10000 [==============================] - 5s 537us/step - loss: 1.2785 - acc: 0.5000 - val_loss: 1.2256 - val_acc: 0.5240
Epoch 10/120
10000/10000 [==============================] - 5s 542us/step - loss: 1.2424 - acc: 0.5147 - val_loss: 1.1901 - val_acc: 0.5140
Epoch 11/120
10000/10000 [==============================] - 5s 532us/step - loss: 1.2137 - acc: 0.5170 - val_loss: 1.2421 - val_acc: 0.5070
Epoch 12/120
10000/10000 [==============================] - 5s 534us/step - loss: 1.2033 - acc: 0.5166 - val_loss: 1.2098 - val_acc: 0.5190
Epoch 13/120
10000/10000 [==============================] - 6s 554us/step - loss: 1.1835 - acc: 0.5174 - val_loss: 1.1632 - val_acc: 0.5220
Epoch 14/120
10000/10000 [==============================] - 5s 546us/step - loss: 1.1722 - acc: 0.5153 - val_loss: 1.1435 - val_acc: 0.5390
Epoch 15/120
10000/10000 [==============================] - 5s 545us/step - loss: 1.1573 - acc: 0.5204 - val_loss: 1.1498 - val_acc: 0.5220
Epoch 16/120
10000/10000 [==============================] - 6s 551us/step - loss: 1.1548 - acc: 0.5265 - val_loss: 1.1391 - val_acc: 0.5160
Epoch 17/120
10000/10000 [==============================] - 5s 544us/step - loss: 1.1425 - acc: 0.5243 - val_loss: 1.1500 - val_acc: 0.5170
Epoch 18/120
10000/10000 [==============================] - 5s 543us/step - loss: 1.1433 - acc: 0.5248 - val_loss: 1.1439 - val_acc: 0.5240
Epoch 19/120
10000/10000 [==============================] - 5s 535us/step - loss: 1.1291 - acc: 0.5288 - val_loss: 1.1402 - val_acc: 0.5290
Epoch 20/120
10000/10000 [==============================] - 5s 538us/step - loss: 1.1247 - acc: 0.5366 - val_loss: 1.1471 - val_acc: 0.5110
Epoch 21/120
10000/10000 [==============================] - 5s 538us/step - loss: 1.1210 - acc: 0.5311 - val_loss: 1.1955 - val_acc: 0.5020
Epoch 22/120
10000/10000 [==============================] - 5s 541us/step - loss: 1.1129 - acc: 0.5285 - val_loss: 1.1369 - val_acc: 0.5010
Epoch 23/120
10000/10000 [==============================] - 5s 543us/step - loss: 1.1019 - acc: 0.5336 - val_loss: 1.1377 - val_acc: 0.5130
Epoch 24/120
10000/10000 [==============================] - 5s 548us/step - loss: 1.0951 - acc: 0.5373 - val_loss: 1.1215 - val_acc: 0.5150
Epoch 25/120
10000/10000 [==============================] - 5s 541us/step - loss: 1.0902 - acc: 0.5332 - val_loss: 1.1343 - val_acc: 0.5130
Epoch 26/120
10000/10000 [==============================] - 5s 544us/step - loss: 1.0843 - acc: 0.5398 - val_loss: 1.1442 - val_acc: 0.5080
Epoch 27/120
10000/10000 [==============================] - 6s 550us/step - loss: 1.0781 - acc: 0.5405 - val_loss: 1.1352 - val_acc: 0.5020
Epoch 28/120
10000/10000 [==============================] - 5s 545us/step - loss: 1.0777 - acc: 0.5411 - val_loss: 1.1271 - val_acc: 0.5120
Epoch 29/120
10000/10000 [==============================] - 5s 548us/step - loss: 1.0616 - acc: 0.5505 - val_loss: 1.1326 - val_acc: 0.5090
Epoch 30/120
10000/10000 [==============================] - 5s 542us/step - loss: 1.0583 - acc: 0.5461 - val_loss: 1.1404 - val_acc: 0.5150
Epoch 31/120
10000/10000 [==============================] - 5s 546us/step - loss: 1.0504 - acc: 0.5495 - val_loss: 1.1379 - val_acc: 0.5100
Epoch 32/120
10000/10000 [==============================] - 5s 546us/step - loss: 1.0385 - acc: 0.5554 - val_loss: 1.1172 - val_acc: 0.5060
Epoch 33/120
10000/10000 [==============================] - 6s 550us/step - loss: 1.0255 - acc: 0.5622 - val_loss: 1.1158 - val_acc: 0.5150
Epoch 34/120
10000/10000 [==============================] - 5s 543us/step - loss: 1.0122 - acc: 0.5701 - val_loss: 1.1054 - val_acc: 0.5320
Epoch 35/120
10000/10000 [==============================] - 5s 541us/step - loss: 0.9731 - acc: 0.5959 - val_loss: 1.0344 - val_acc: 0.5830
Epoch 36/120
10000/10000 [==============================] - 6s 587us/step - loss: 0.8019 - acc: 0.7003 - val_loss: 0.7724 - val_acc: 0.7170
Epoch 37/120
10000/10000 [==============================] - 6s 580us/step - loss: 0.6411 - acc: 0.7687 - val_loss: 0.6818 - val_acc: 0.7440
Epoch 38/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.5760 - acc: 0.7849 - val_loss: 0.6301 - val_acc: 0.7570
Epoch 39/120
10000/10000 [==============================] - 6s 552us/step - loss: 0.5269 - acc: 0.8038 - val_loss: 0.5865 - val_acc: 0.7790
Epoch 40/120
10000/10000 [==============================] - 5s 545us/step - loss: 0.4810 - acc: 0.8209 - val_loss: 0.5537 - val_acc: 0.7940
Epoch 41/120
10000/10000 [==============================] - 5s 547us/step - loss: 0.4153 - acc: 0.8506 - val_loss: 0.4712 - val_acc: 0.8260
Epoch 42/120
10000/10000 [==============================] - 6s 566us/step - loss: 0.3744 - acc: 0.8652 - val_loss: 0.4347 - val_acc: 0.8310
Epoch 43/120
10000/10000 [==============================] - 6s 584us/step - loss: 0.3499 - acc: 0.8695 - val_loss: 0.4295 - val_acc: 0.8420
Epoch 44/120
10000/10000 [==============================] - 5s 542us/step - loss: 0.3236 - acc: 0.8817 - val_loss: 0.4442 - val_acc: 0.8440
Epoch 45/120
10000/10000 [==============================] - 6s 562us/step - loss: 0.3140 - acc: 0.8842 - val_loss: 0.4021 - val_acc: 0.8520
Epoch 46/120
10000/10000 [==============================] - 6s 551us/step - loss: 0.2923 - acc: 0.8931 - val_loss: 0.3838 - val_acc: 0.8630
Epoch 47/120
10000/10000 [==============================] - 6s 553us/step - loss: 0.2776 - acc: 0.8955 - val_loss: 0.3820 - val_acc: 0.8590
Epoch 48/120
10000/10000 [==============================] - 6s 565us/step - loss: 0.2679 - acc: 0.8994 - val_loss: 0.3688 - val_acc: 0.8620
Epoch 49/120
10000/10000 [==============================] - 6s 552us/step - loss: 0.2484 - acc: 0.9114 - val_loss: 0.3481 - val_acc: 0.8720
Epoch 50/120
10000/10000 [==============================] - 5s 545us/step - loss: 0.2462 - acc: 0.9105 - val_loss: 0.4208 - val_acc: 0.8650
Epoch 51/120
10000/10000 [==============================] - 6s 583us/step - loss: 0.2287 - acc: 0.9166 - val_loss: 0.4267 - val_acc: 0.8470
Epoch 52/120
10000/10000 [==============================] - 6s 575us/step - loss: 0.2208 - acc: 0.9198 - val_loss: 0.3629 - val_acc: 0.8720
Epoch 53/120
10000/10000 [==============================] - 6s 562us/step - loss: 0.1985 - acc: 0.9285 - val_loss: 0.3420 - val_acc: 0.8840
Epoch 54/120
10000/10000 [==============================] - 6s 574us/step - loss: 0.1941 - acc: 0.9304 - val_loss: 0.3392 - val_acc: 0.8910
Epoch 55/120
10000/10000 [==============================] - 5s 543us/step - loss: 0.1729 - acc: 0.9386 - val_loss: 0.3248 - val_acc: 0.8970
Epoch 56/120
10000/10000 [==============================] - 5s 535us/step - loss: 0.1654 - acc: 0.9401 - val_loss: 0.3118 - val_acc: 0.8950
Epoch 57/120
10000/10000 [==============================] - 6s 568us/step - loss: 0.1621 - acc: 0.9415 - val_loss: 0.3330 - val_acc: 0.8940
Epoch 58/120
10000/10000 [==============================] - 6s 560us/step - loss: 0.1458 - acc: 0.9493 - val_loss: 0.2552 - val_acc: 0.9110
Epoch 59/120
10000/10000 [==============================] - 5s 521us/step - loss: 0.1354 - acc: 0.9518 - val_loss: 0.2699 - val_acc: 0.9120
Epoch 60/120
10000/10000 [==============================] - 5s 516us/step - loss: 0.1230 - acc: 0.9563 - val_loss: 0.2590 - val_acc: 0.9090
Epoch 61/120
10000/10000 [==============================] - 5s 518us/step - loss: 0.1213 - acc: 0.9593 - val_loss: 0.2691 - val_acc: 0.9100
Epoch 62/120
10000/10000 [==============================] - 5s 514us/step - loss: 0.1087 - acc: 0.9625 - val_loss: 0.2319 - val_acc: 0.9290
Epoch 63/120
10000/10000 [==============================] - 5s 518us/step - loss: 0.1009 - acc: 0.9639 - val_loss: 0.2281 - val_acc: 0.9300
Epoch 64/120
10000/10000 [==============================] - 5s 517us/step - loss: 0.1030 - acc: 0.9635 - val_loss: 0.2202 - val_acc: 0.9320
Epoch 65/120
10000/10000 [==============================] - 5s 541us/step - loss: 0.0971 - acc: 0.9685 - val_loss: 0.2242 - val_acc: 0.9310
Epoch 66/120
10000/10000 [==============================] - 5s 533us/step - loss: 0.0877 - acc: 0.9708 - val_loss: 0.2256 - val_acc: 0.9310
Epoch 67/120
10000/10000 [==============================] - 5s 518us/step - loss: 0.0842 - acc: 0.9725 - val_loss: 0.2223 - val_acc: 0.9380
Epoch 68/120
10000/10000 [==============================] - 5s 522us/step - loss: 0.0726 - acc: 0.9741 - val_loss: 0.2067 - val_acc: 0.9340
Epoch 69/120
10000/10000 [==============================] - 5s 520us/step - loss: 0.0781 - acc: 0.9738 - val_loss: 0.2182 - val_acc: 0.9410
Epoch 70/120
10000/10000 [==============================] - 5s 519us/step - loss: 0.0656 - acc: 0.9774 - val_loss: 0.2225 - val_acc: 0.9430
Epoch 71/120
10000/10000 [==============================] - 5s 535us/step - loss: 0.0668 - acc: 0.9766 - val_loss: 0.2391 - val_acc: 0.9280
Epoch 72/120
10000/10000 [==============================] - 5s 519us/step - loss: 0.0669 - acc: 0.9782 - val_loss: 0.2332 - val_acc: 0.9430
Epoch 73/120
10000/10000 [==============================] - 5s 524us/step - loss: 0.0572 - acc: 0.9798 - val_loss: 0.2777 - val_acc: 0.9280
Epoch 74/120
10000/10000 [==============================] - 5s 519us/step - loss: 0.0574 - acc: 0.9803 - val_loss: 0.2197 - val_acc: 0.9400
Epoch 75/120
10000/10000 [==============================] - 5s 522us/step - loss: 0.0532 - acc: 0.9818 - val_loss: 0.2336 - val_acc: 0.9400
Epoch 76/120
10000/10000 [==============================] - 5s 525us/step - loss: 0.0526 - acc: 0.9810 - val_loss: 0.2209 - val_acc: 0.9420
Epoch 77/120
10000/10000 [==============================] - 5s 524us/step - loss: 0.0507 - acc: 0.9852 - val_loss: 0.2271 - val_acc: 0.9410
Epoch 78/120
10000/10000 [==============================] - 5s 524us/step - loss: 0.0436 - acc: 0.9848 - val_loss: 0.2055 - val_acc: 0.9410
Epoch 79/120
10000/10000 [==============================] - 5s 522us/step - loss: 0.0441 - acc: 0.9857 - val_loss: 0.2253 - val_acc: 0.9450
Epoch 80/120
10000/10000 [==============================] - 5s 549us/step - loss: 0.0487 - acc: 0.9830 - val_loss: 0.2381 - val_acc: 0.9430
Epoch 81/120
10000/10000 [==============================] - 5s 535us/step - loss: 0.0398 - acc: 0.9870 - val_loss: 0.2310 - val_acc: 0.9430
Epoch 82/120
10000/10000 [==============================] - 5s 524us/step - loss: 0.0462 - acc: 0.9844 - val_loss: 0.2394 - val_acc: 0.9390
Epoch 83/120
10000/10000 [==============================] - 5s 522us/step - loss: 0.0362 - acc: 0.9889 - val_loss: 0.2291 - val_acc: 0.9430
Epoch 84/120
10000/10000 [==============================] - 5s 523us/step - loss: 0.0354 - acc: 0.9870 - val_loss: 0.2304 - val_acc: 0.9460
Epoch 85/120
10000/10000 [==============================] - 5s 528us/step - loss: 0.0428 - acc: 0.9864 - val_loss: 0.2771 - val_acc: 0.9400
Epoch 86/120
10000/10000 [==============================] - 5s 527us/step - loss: 0.0336 - acc: 0.9883 - val_loss: 0.2385 - val_acc: 0.9510
Epoch 87/120
10000/10000 [==============================] - 5s 524us/step - loss: 0.0355 - acc: 0.9888 - val_loss: 0.2442 - val_acc: 0.9500
Epoch 88/120
10000/10000 [==============================] - 5s 525us/step - loss: 0.0320 - acc: 0.9909 - val_loss: 0.2259 - val_acc: 0.9550
Epoch 89/120
10000/10000 [==============================] - 5s 531us/step - loss: 0.0306 - acc: 0.9900 - val_loss: 0.2517 - val_acc: 0.9470
Epoch 90/120
10000/10000 [==============================] - 5s 527us/step - loss: 0.0326 - acc: 0.9896 - val_loss: 0.2657 - val_acc: 0.9480
Epoch 91/120
10000/10000 [==============================] - 5s 526us/step - loss: 0.0333 - acc: 0.9892 - val_loss: 0.2539 - val_acc: 0.9440
Epoch 92/120
10000/10000 [==============================] - 5s 527us/step - loss: 0.0283 - acc: 0.9903 - val_loss: 0.2841 - val_acc: 0.9440
Epoch 93/120
10000/10000 [==============================] - 5s 525us/step - loss: 0.0325 - acc: 0.9910 - val_loss: 0.2638 - val_acc: 0.9390
Epoch 94/120
10000/10000 [==============================] - 5s 527us/step - loss: 0.0262 - acc: 0.9912 - val_loss: 0.2580 - val_acc: 0.9500
Epoch 95/120
10000/10000 [==============================] - 5s 531us/step - loss: 0.0243 - acc: 0.9916 - val_loss: 0.2463 - val_acc: 0.9510
Epoch 96/120
10000/10000 [==============================] - 5s 531us/step - loss: 0.0253 - acc: 0.9921 - val_loss: 0.2260 - val_acc: 0.9540
Epoch 97/120
10000/10000 [==============================] - 5s 533us/step - loss: 0.0241 - acc: 0.9934 - val_loss: 0.2311 - val_acc: 0.9540
Epoch 98/120
10000/10000 [==============================] - 5s 536us/step - loss: 0.0275 - acc: 0.9912 - val_loss: 0.2299 - val_acc: 0.9520
Epoch 99/120
10000/10000 [==============================] - 6s 561us/step - loss: 0.0249 - acc: 0.9929 - val_loss: 0.2726 - val_acc: 0.9470
Epoch 100/120
10000/10000 [==============================] - 5s 537us/step - loss: 0.0260 - acc: 0.9919 - val_loss: 0.2337 - val_acc: 0.9510
Epoch 101/120
10000/10000 [==============================] - 5s 538us/step - loss: 0.0290 - acc: 0.9922 - val_loss: 0.2284 - val_acc: 0.9510
Epoch 102/120
10000/10000 [==============================] - 6s 564us/step - loss: 0.0227 - acc: 0.9936 - val_loss: 0.2164 - val_acc: 0.9610
Epoch 103/120
10000/10000 [==============================] - 6s 566us/step - loss: 0.0229 - acc: 0.9931 - val_loss: 0.2306 - val_acc: 0.9490
Epoch 104/120
10000/10000 [==============================] - 5s 547us/step - loss: 0.0165 - acc: 0.9949 - val_loss: 0.2379 - val_acc: 0.9540
Epoch 105/120
10000/10000 [==============================] - 5s 540us/step - loss: 0.0219 - acc: 0.9929 - val_loss: 0.2549 - val_acc: 0.9530
Epoch 106/120
10000/10000 [==============================] - 5s 531us/step - loss: 0.0209 - acc: 0.9946 - val_loss: 0.2396 - val_acc: 0.9580
Epoch 107/120
10000/10000 [==============================] - 5s 541us/step - loss: 0.0178 - acc: 0.9945 - val_loss: 0.2562 - val_acc: 0.9530
Epoch 108/120
10000/10000 [==============================] - 5s 541us/step - loss: 0.0241 - acc: 0.9934 - val_loss: 0.2483 - val_acc: 0.9480
Epoch 109/120
10000/10000 [==============================] - 5s 540us/step - loss: 0.0207 - acc: 0.9948 - val_loss: 0.2361 - val_acc: 0.9550
Epoch 110/120
10000/10000 [==============================] - 5s 537us/step - loss: 0.0248 - acc: 0.9938 - val_loss: 0.2607 - val_acc: 0.9540
Epoch 111/120
10000/10000 [==============================] - 5s 541us/step - loss: 0.0188 - acc: 0.9945 - val_loss: 0.2509 - val_acc: 0.9480
Epoch 112/120
10000/10000 [==============================] - 5s 541us/step - loss: 0.0224 - acc: 0.9935 - val_loss: 0.2719 - val_acc: 0.9450
Epoch 113/120
10000/10000 [==============================] - 5s 537us/step - loss: 0.0178 - acc: 0.9946 - val_loss: 0.2461 - val_acc: 0.9510
Epoch 114/120
10000/10000 [==============================] - 5s 537us/step - loss: 0.0157 - acc: 0.9950 - val_loss: 0.2717 - val_acc: 0.9490
Epoch 115/120
10000/10000 [==============================] - 6s 563us/step - loss: 0.0231 - acc: 0.9940 - val_loss: 0.2401 - val_acc: 0.9590
Epoch 116/120
10000/10000 [==============================] - 6s 554us/step - loss: 0.0228 - acc: 0.9939 - val_loss: 0.2273 - val_acc: 0.9510
Epoch 117/120
10000/10000 [==============================] - 5s 522us/step - loss: 0.0248 - acc: 0.9928 - val_loss: 0.3028 - val_acc: 0.9440
Epoch 118/120
10000/10000 [==============================] - 5s 524us/step - loss: 0.0167 - acc: 0.9946 - val_loss: 0.2993 - val_acc: 0.9420
Epoch 119/120
10000/10000 [==============================] - 5s 523us/step - loss: 0.0192 - acc: 0.9947 - val_loss: 0.2558 - val_acc: 0.9550
Epoch 120/120
10000/10000 [==============================] - 5s 530us/step - loss: 0.0182 - acc: 0.9947 - val_loss: 0.2723 - val_acc: 0.9500
Out[21]:
<keras.callbacks.History at 0x1237ecb70>
In [22]:
for i in range(0,10):
        current_inp = test_stories[i]
        current_story, current_query, current_answer = vectorize_stories([current_inp], word_idx, story_maxlen, query_maxlen)
        current_prediction = model.predict([current_story, current_query])
        current_prediction = idx_word[np.argmax(current_prediction)]
        print(' '.join(current_inp[0]), ' '.join(current_inp[1]), '| Prediction:', current_prediction, '| Ground Truth:', current_inp[2])
        print("-----------------------------------------------------------------------------------------")
        
John travelled to the hallway . Mary journeyed to the bathroom . Where is John ? | Prediction: hallway | Ground Truth: hallway
-----------------------------------------------------------------------------------------
John travelled to the hallway . Mary journeyed to the bathroom . Daniel went back to the bathroom . John moved to the bedroom . Where is Mary ? | Prediction: bathroom | Ground Truth: bathroom
-----------------------------------------------------------------------------------------
John travelled to the hallway . Mary journeyed to the bathroom . Daniel went back to the bathroom . John moved to the bedroom . John went to the hallway . Sandra journeyed to the kitchen . Where is Sandra ? | Prediction: kitchen | Ground Truth: kitchen
-----------------------------------------------------------------------------------------
John travelled to the hallway . Mary journeyed to the bathroom . Daniel went back to the bathroom . John moved to the bedroom . John went to the hallway . Sandra journeyed to the kitchen . Sandra travelled to the hallway . John went to the garden . Where is Sandra ? | Prediction: hallway | Ground Truth: hallway
-----------------------------------------------------------------------------------------
John travelled to the hallway . Mary journeyed to the bathroom . Daniel went back to the bathroom . John moved to the bedroom . John went to the hallway . Sandra journeyed to the kitchen . Sandra travelled to the hallway . John went to the garden . Sandra went back to the bathroom . Sandra moved to the kitchen . Where is Sandra ? | Prediction: kitchen | Ground Truth: kitchen
-----------------------------------------------------------------------------------------
Sandra travelled to the kitchen . Sandra travelled to the hallway . Where is Sandra ? | Prediction: hallway | Ground Truth: hallway
-----------------------------------------------------------------------------------------
Sandra travelled to the kitchen . Sandra travelled to the hallway . Mary went to the bathroom . Sandra moved to the garden . Where is Sandra ? | Prediction: garden | Ground Truth: garden
-----------------------------------------------------------------------------------------
Sandra travelled to the kitchen . Sandra travelled to the hallway . Mary went to the bathroom . Sandra moved to the garden . Sandra travelled to the office . Daniel journeyed to the hallway . Where is Daniel ? | Prediction: hallway | Ground Truth: hallway
-----------------------------------------------------------------------------------------
Sandra travelled to the kitchen . Sandra travelled to the hallway . Mary went to the bathroom . Sandra moved to the garden . Sandra travelled to the office . Daniel journeyed to the hallway . Daniel journeyed to the office . John moved to the hallway . Where is Sandra ? | Prediction: office | Ground Truth: office
-----------------------------------------------------------------------------------------
Sandra travelled to the kitchen . Sandra travelled to the hallway . Mary went to the bathroom . Sandra moved to the garden . Sandra travelled to the office . Daniel journeyed to the hallway . Daniel journeyed to the office . John moved to the hallway . John travelled to the bathroom . John journeyed to the office . Where is Daniel ? | Prediction: kitchen | Ground Truth: office
-----------------------------------------------------------------------------------------
In [23]:
print(story)
['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.']
In [24]:
from keras.models import model_from_json
model_json = model.to_json()
with open("model_single_fact.json", "w") as json_file:
    json_file.write(model_json)
# serialize weights to HDF5
model.save_weights("model_single_fact.h5")
print("Saved model to disk")
Saved model to disk
In [25]:
json_file = open('model_single_fact.json', 'r')
loaded_model_json = json_file.read()
json_file.close()
loaded_model = model_from_json(loaded_model_json)
# load weights into new model
loaded_model.load_weights("model_single_fact.h5")
/anaconda3/lib/python3.6/site-packages/keras/engine/topology.py:1271: UserWarning: The `Merge` layer is deprecated and will be removed after 08/2017. Use instead layers from `keras.layers.merge`, e.g. `add`, `concatenate`, etc.
  return cls(**config)
In [26]:
test_stories[0]
Out[26]:
(['John',
  'travelled',
  'to',
  'the',
  'hallway',
  '.',
  'Mary',
  'journeyed',
  'to',
  'the',
  'bathroom',
  '.'],
 ['Where', 'is', 'John', '?'],
 'hallway')
In [27]:
loaded_model.compile(optimizer='rmsprop', loss='categorical_crossentropy',
              metrics=['accuracy'])
for i in range(0,10):
        current_inp = test_stories[i]
        current_story, current_query, current_answer = vectorize_stories([current_inp], word_idx, story_maxlen, query_maxlen)
        current_prediction = loaded_model.predict([current_story, current_query])
        current_prediction = idx_word[np.argmax(current_prediction)]
        print(' '.join(current_inp[0]), ' '.join(current_inp[1]), '| Prediction:', current_prediction, '| Ground Truth:', current_inp[2])
        print("-----------------------------------------------------------------------------------------")
John travelled to the hallway . Mary journeyed to the bathroom . Where is John ? | Prediction: hallway | Ground Truth: hallway
-----------------------------------------------------------------------------------------
John travelled to the hallway . Mary journeyed to the bathroom . Daniel went back to the bathroom . John moved to the bedroom . Where is Mary ? | Prediction: bathroom | Ground Truth: bathroom
-----------------------------------------------------------------------------------------
John travelled to the hallway . Mary journeyed to the bathroom . Daniel went back to the bathroom . John moved to the bedroom . John went to the hallway . Sandra journeyed to the kitchen . Where is Sandra ? | Prediction: kitchen | Ground Truth: kitchen
-----------------------------------------------------------------------------------------
John travelled to the hallway . Mary journeyed to the bathroom . Daniel went back to the bathroom . John moved to the bedroom . John went to the hallway . Sandra journeyed to the kitchen . Sandra travelled to the hallway . John went to the garden . Where is Sandra ? | Prediction: hallway | Ground Truth: hallway
-----------------------------------------------------------------------------------------
John travelled to the hallway . Mary journeyed to the bathroom . Daniel went back to the bathroom . John moved to the bedroom . John went to the hallway . Sandra journeyed to the kitchen . Sandra travelled to the hallway . John went to the garden . Sandra went back to the bathroom . Sandra moved to the kitchen . Where is Sandra ? | Prediction: kitchen | Ground Truth: kitchen
-----------------------------------------------------------------------------------------
Sandra travelled to the kitchen . Sandra travelled to the hallway . Where is Sandra ? | Prediction: hallway | Ground Truth: hallway
-----------------------------------------------------------------------------------------
Sandra travelled to the kitchen . Sandra travelled to the hallway . Mary went to the bathroom . Sandra moved to the garden . Where is Sandra ? | Prediction: garden | Ground Truth: garden
-----------------------------------------------------------------------------------------
Sandra travelled to the kitchen . Sandra travelled to the hallway . Mary went to the bathroom . Sandra moved to the garden . Sandra travelled to the office . Daniel journeyed to the hallway . Where is Daniel ? | Prediction: hallway | Ground Truth: hallway
-----------------------------------------------------------------------------------------
Sandra travelled to the kitchen . Sandra travelled to the hallway . Mary went to the bathroom . Sandra moved to the garden . Sandra travelled to the office . Daniel journeyed to the hallway . Daniel journeyed to the office . John moved to the hallway . Where is Sandra ? | Prediction: office | Ground Truth: office
-----------------------------------------------------------------------------------------
Sandra travelled to the kitchen . Sandra travelled to the hallway . Mary went to the bathroom . Sandra moved to the garden . Sandra travelled to the office . Daniel journeyed to the hallway . Daniel journeyed to the office . John moved to the hallway . John travelled to the bathroom . John journeyed to the office . Where is Daniel ? | Prediction: kitchen | Ground Truth: office
-----------------------------------------------------------------------------------------
In [28]:
print(current_story)
[[ 0  0  0  0  0  0  0  0  6 20 19 18 15  1  6 20 19 18 12  1  5 21 19 18
   9  1  6 16 19 18 11  1  6 20 19 18 17  1  3 14 19 18 12  1  3 14 19 18
  17  1  4 16 19 18 12  1  4 20 19 18  9  1  4 14 19 18 17  1]]
In [29]:
print(current_query)
[[ 7 13  3  2]]
In [30]:
print(len(current_query))
1
In [31]:
print(test_stories[0])
(['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway')